home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Selection / Multimedia Selection Volume One - CD-ROM / MULTIMEDIA SELECTION____________.ISO / programz / c / cuj0905.arj / 9N05110C < prev    next >
Encoding:
Text File  |  1991-03-24  |  124 b   |  8 lines

  1. ln_seq::ln_seq(unsigned n)
  2.     {
  3.     first = last = new listnode;
  4.     first->number = n;
  5.     first->next = 0;
  6.     }
  7.  
  8.